home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 2000 February: Tool Chest / Dev.CD Feb 00 TC.toast / pc / tool chest / macapp / install macapp r13u4 / Apple Frameworks / MacApp / Libraries / MacApp.h / MacApp.h
Encoding:
Text File  |  1998-10-13  |  656 b   |  49 lines  |  [TEXT/CWIE]

  1. // MacApp.h
  2. // Copyright © 1984-98 by Apple Computer, Inc. All rights reserved.
  3. // Core MacApp header files.
  4.  
  5. /*
  6.     Change History:
  7. */
  8.  
  9. #ifndef __MACAPP__
  10. #define __MACAPP__
  11.  
  12. // MacAppRequired.h (include before any other headers)
  13.  
  14. #ifndef __MacAppRequired__
  15. #include "MacAppRequired.h"
  16. #endif
  17.  
  18. // MacApp Core
  19.  
  20. #ifndef __MACORE__
  21. #include "MACore.h"
  22. #endif
  23.  
  24. // MacApp Framework
  25.  
  26. #ifndef __MAFRAMEWORK__
  27. #include "MAFramework.h"
  28. #endif
  29.  
  30. // MacApp Documents
  31.  
  32. #ifndef __MADOCS__
  33. #include "MADocs.h"
  34. #endif
  35.  
  36. // MacApp Views
  37.  
  38. #ifndef __MAVIEWS__
  39. #include "MAViews.h"
  40. #endif
  41.  
  42. // MacApp Application
  43.  
  44. #ifndef __MAAPP__
  45. #include "MAApp.h"
  46. #endif
  47.  
  48. #endif // __MACAPP__
  49.